home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / windows / ll_110.zip / _FORMATS.TXT next >
Text File  |  1995-11-07  |  2KB  |  78 lines

  1. Data formats
  2. ------------
  3.  
  4. Most of the data will be output in a pretty predictable way.... strings get
  5. printed out as letters (eg "this is a string"), numbers get printed out as
  6. numbers converted to a string (eg "123456789"), and dates get printed out
  7. in US format (eg "12/25/95" is Xmas Day) ... this last one was a very
  8. difficult decision, but I knew you'd all moan like hell if it was in the
  9. English format "25/12/95"!!!!
  10.  
  11. However, some fields aren't so obvious, so here's a list of the "odd ones
  12. out".
  13.  
  14. 1) single bit fields, displaying as "X" or "."... these come from the TBBS
  15. runtime substitution parameters:
  16.  
  17. %CANANSI%
  18. %CFGANSI%
  19. %PWDEXP%
  20.  
  21. 2) single bit fields, displaying as "T" or "F"... these come from either
  22. the ULEDIT print templates, or are new values:
  23.  
  24. %ASKPREPARE%
  25. %FSEMODE%
  26. %MSGPROMPT%
  27. %LINEFEEDS%
  28. %UPPERCASE%
  29. %GRAPHICS%
  30. %ANSI%
  31. %KEEP%
  32. %REVIEWED%
  33. %FULLACCESS%
  34. %INVISIBLE%
  35. %PUBLICACCT%
  36. %READNEWS%
  37. %DELETED%
  38.  
  39.  
  40. 3) miscellaneous:
  41.  
  42. %LASTLn%    "mm/dd/yy  hh:mm"
  43.  
  44. %CLSCODES%  "nn, nn, nn, nn, nn, nn". The first "nn" has leading spaces
  45.             trimmed, all others are 3 chars wide.... so string is 21 to 23
  46.             chars long (don't complain to me, that's the way it is in
  47.             ULEDIT!) To fix to 23 chars (first "nn" always 3 chars) use
  48.             "%CLSCODES:+23%".
  49.  
  50. %An%        "XXX...X."
  51.  
  52. %BCnLEFT%   "hhh:mm"
  53.  
  54.  
  55. %SYSFG0%    "X . X . X . X . X"    (Sys Flags 1 to 9)
  56. %SYSFG1%    ". X . X . X . X . X"  (Sys Flags 10 to 19)
  57. %SYSFG2%    ". X . X . X . X . X"  (Sys Flags 20 to 29)
  58. %SYSFG3%    ". X . X . X . X . X"  (Sys Flags 30 to 39)
  59. %SYSFG4%    ". X . X . X . X . X"  (Sys Flags 40 to 49)
  60. %SYSFG5%    ". X . X . X . X . X"  (Sys Flags 50 to 59)
  61. %SYSFG6%    ". X . X ."            (Sys Flags 60 to 64)
  62.  
  63.             (to make SYSFG0 "line up" with the others, use "%SYSFG0:+19%"
  64.             ...this is another "quirk" from the way ULEDIT does things)
  65.  
  66.  
  67. %SFG0%      "X.X.X.X.X"     (Sys Flags 1 to 9)
  68. %SFG1%      ".X.X.X.X.X"    (Sys Flags 10 to 19)
  69. %SFG2%      ".X.X.X.X.X"    (Sys Flags 20 to 29)
  70. %SFG3%      ".X.X.X.X.X"    (Sys Flags 30 to 39)
  71. %SFG4%      ".X.X.X.X.X"    (Sys Flags 40 to 49)
  72. %SFG5%      ".X.X.X.X.X"    (Sys Flags 50 to 59)
  73. %SFG6%      ".X.X."         (Sys Flags 60 to 64)
  74.  
  75.             (to make SFG0 "line up" with the others, use "%SYSFG0:+10%")
  76.  
  77.  
  78.